<style>
*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
  --color-bg-primary: #d0d6df;
  --color-bg-primary-offset: #f1f3f7;
  --color-bg-secondary: #fff;
  --color-text-primary: #3a3c42;
  --color-text-primary-offset: #898c94;
  --color-orange: #dc9960;
  --color-green: #1eb8b1;
  --color-purple: #657cc4;
  --color-black: var(--color-text-primary);
  --color-red: #d92027;
}



.megamenuz {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  font-family: "Inter", sans-serif;

}

.megamenuz-list {
  margin: 0;
  display: block;
  width: 100%;
  padding: 8px;
}
.megamenuz-list + .megamenuz-list {
  border-top: 1px solid #ddd;
}

.megamenuz-sub-list {
  display: none;
  padding: 8px;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  position: absolute;
  left: 100%;
  right: 0;
  z-index: 100;
  width: 100%;
  top: 0;
  flex-direction: column;
}
.megamenuz-sub-list:hover {
  display: flex;
}

.megamenuz-item {
  position: relative;
}

.megamenuz-button {
  font: inherit;
  border: 0;
  padding: 8px 8px;
  padding-right: 36px;
  width: 100%;
  border-radius: 8px;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-bg-secondary);
}
.megamenuz-button:hover {
  background-color: var(--color-bg-primary-offset);
}
.megamenuz-button:hover + .megamenuz-sub-list {
  display: flex;
}
.megamenuz-button:hover svg {
  stroke: var(--color-text-primary);
}
.megamenuz-button svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  stroke: var(--color-text-primary-offset);
}
.megamenuz-button svg:nth-of-type(2) {
  margin-right: 0;
  position: absolute;
  right: 8px;
}
.megamenuz-button--delete:hover {
  color: var(--color-red);
}
.megamenuz-button--delete:hover svg:first-of-type {
  stroke: var(--color-red);
}
.megamenuz-button--orange svg:first-of-type {
  stroke: var(--color-orange);
}
.megamenuz-button--green svg:first-of-type {
  stroke: var(--color-green);
}
.megamenuz-button--purple svg:first-of-type {
  stroke: var(--color-purple);
}
.megamenuz-button--black svg:first-of-type {
  stroke: var(--color-black);
}
.megamenuz-button--checked svg:nth-of-type(2) {
  stroke: var(--color-purple);
}

.hide {
    display: none;
  }

  .megazet:hover + .hide {
    display: block;
    color: red;
  }

  .help-tip{
    position:relative;
    transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
    border: 2px solid #444;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 14px;
    cursor: default; 
    display: inline-block;   
    left: 7px; 
    top: 7px; 
}

.help-tip:before{
    content:'?';
    font-family: sans-serif;
    font-weight: normal;
    color:#444;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

/* The tooltip */
.help-tip p {    
    display: none;
    font-family: sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    background-color: #fffcec;
    padding: 12px 16px;
    min-width: 300px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 5%);
    border-radius: 3px;
/* 	border: 1px solid #E0E0E0; */
    box-shadow: 0 0px 22px 0 rgba(0,0,0,0.2);
    color: #39393D;
    font-size: 12px;
    line-height: 18px;
    z-index: 99;
}

.help-tip p a {
    color: #067df7;
    text-decoration: none;
}

.help-tip p a:hover {
    text-decoration: underline;
}

/* The pointer of the tooltip */
.help-tip p:before { 
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color:#FFFFFF;
    top: -9px;
    left: 50%;
    transform: translate(-50%, -50%);
}

 /* Prevents the tooltip from being hidden */
.help-tip p:after {
    width: 10px;
    height: 40px;
    content:'';
    position: absolute;
    top: -40px;
    left: 0;
}

